go/types.instance.ctxt (field)

11 uses

	go/types (current package)
		instantiate.go#L99: 		ctxts = append(ctxts, expanding.inst.ctxt)
		named.go#L143: 	ctxt            *Context  // local Context; set to nil after full expansion
		named.go#L200: 			n.inst.ctxt = nil
		named.go#L273: 		inst.ctxt = expanding.inst.ctxt
		named.go#L377: 		assert(t.inst.ctxt != nil) // we should still have a context remaining from the resolution phase
		named.go#L385: 			t.inst.ctxt = nil // no need for a context anymore
		named.go#L644: 	if n.inst.ctxt == nil {
		named.go#L645: 		n.inst.ctxt = NewContext()
		named.go#L664: 	h := n.inst.ctxt.instanceHash(orig, targs.list())
		named.go#L665: 	n2 := n.inst.ctxt.update(h, orig, n.TypeArgs().list(), n)